home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmSearch
- AutoRedraw = -1 'True
- BackColor = &H8000000F&
- BorderStyle = 3 'Fixed Double
- Caption = "Find"
- ClientHeight = 1365
- ClientLeft = 2115
- ClientTop = 3480
- ClientWidth = 5010
- ClipControls = 0 'False
- Height = 1800
- Left = 2040
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 1365
- ScaleWidth = 5010
- Top = 3120
- Width = 5160
- Begin CommandButton cmdButton
- Caption = "Cancel"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 1
- Left = 3420
- TabIndex = 3
- Top = 630
- Width = 1335
- End
- Begin CommandButton cmdButton
- Caption = "OK"
- Default = -1 'True
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 0
- Left = 3420
- TabIndex = 2
- Top = 180
- Width = 1335
- End
- Begin TextBox txtCustData
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 300
- Index = 0
- Left = 240
- MaxLength = 30
- TabIndex = 0
- Top = 405
- Width = 1605
- End
- Begin TextBox txtCustData
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 300
- Index = 1
- Left = 1935
- MaxLength = 20
- TabIndex = 1
- Top = 405
- Width = 1125
- End
- Begin Label lblCustData
- AutoSize = -1 'True
- BackColor = &H8000000F&
- Caption = "Last Name:"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 195
- Index = 0
- Left = 240
- TabIndex = 5
- Top = 180
- Width = 810
- End
- Begin Label lblCustData
- AutoSize = -1 'True
- BackColor = &H8000000F&
- Caption = "First Name:"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 195
- Index = 1
- Left = 1935
- TabIndex = 4
- Top = 180
- Width = 795
- End
- DefInt A-Z
- Option Explicit
- Sub cmdButton_Click (Index As Integer)
- Me.Tag = LTrim$(Str$(Index))
- Me.Hide
- End Sub
-